QuantLib Python Cookbook by Luigi Ballabio and Goutham Balaraman
Author:Luigi Ballabio and Goutham Balaraman [Luigi Ballabio and Goutham Balaraman]
Language: eng
Format: epub
Publisher: leanpub.com
Published: 2016-06-14T00:00:00+00:00
Model Price Market Price Implied Vol Market Vol Rel Error Price Rel Error Vols
0.008775 0.009485 0.106198 0.1148 -0.074854 -0.074928
0.009669 0.010078 0.106292 0.1108 -0.040610 -0.040688
0.008663 0.008716 0.106343 0.1070 -0.006138 -0.006138
0.006490 0.006226 0.106442 0.1021 0.042367 0.042525
0.003542 0.003323 0.106612 0.1000 0.065817 0.066122
Calibrating Volatility With Fixed Reversion
There are times when we need to calibrate with one parameter held fixed. QuantLib allows you to perform calibration with constraints. However, this ability is not exposed in the SWIG wrappers as of version 1.6. I have created a github issue and provided a patch to address this issue. This patch has been merged into QuantLib-SWIG version 1.7. If you are using version lower than 1.7, you will need this patch to execute the following cells. Below, the model is calibrated with a fixed reversion value of 5%.
The following code is similar to the Hull-White calibration, except we initialize the constrained model with given values. In the calibrate method, we provide a list of boolean with constraints [True, False], meaning that the first parameter a is constrained where as the second sigma is not constrained.
In [7]: constrained_model = ql.HullWhite(term_structure, 0.05, 0.001); engine = ql.JamshidianSwaptionEngine(constrained_model) swaptions = create_swaption_helpers(data, index, term_structure, engine) optimization_method = ql.LevenbergMarquardt(1.0e-8,1.0e-8,1.0e-8) end_criteria = ql.EndCriteria(10000, 100, 1e-6, 1e-8, 1e-8) constrained_model.calibrate(swaptions, optimization_method, end_criteria, ql.NoConstraint(), [], [True, False]) a, sigma = constrained_model.params() print("a = %6.5f, sigma = %6.5f" % (a, sigma)) Out[7]: a = 0.05000, sigma = 0.00586 In [8]: calibration_report(swaptions, data) Out[8]: Cumulative Error Price: 0.11584 Cumulative Error Vols : 0.11615 Out[8]:
Download
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.
Personalized inhaled bacteriophage therapy for treatment of multidrug-resistant Pseudomonas aeruginosa in cystic fibrosis by unknow(157790)
Whisky: Malt Whiskies of Scotland (Collins Little Books) by dominic roskrow(74282)
CONSORT 2025 statement: updated guideline for reporting randomized trials by unknow(66084)
Critical evaluation of the ProfiLER-02 study design and outcomes by Vivek Subbiah & Razelle Kurzrock(65834)
Cardiac gene therapy makes a comeback by Oliver J. Müller & Susanne Hille & Anca Kliesow Remes(65272)
Unveiling the design rules for tunable emission in graphene quantum dots: A high-throughput TDDFT and machine learning perspective by Şener Özönder & Mustafa Coşkun Özdemir & Caner Ünlü(50860)
A yeast-based oral therapeutic delivers immune checkpoint inhibitors to reduce intestinal tumor burden by unknow(40226)
Covalent hitchhikers guide proteins to the nucleus by Alexander F. Russell & Madeline F. Currie & Champak Chatterjee(40194)
Meet the Authors: Christopher R. Mansfield and Emily R. Derbyshire by Christopher R. Mansfield & Emily R. Derbyshire(40058)
What's Done in Darkness by Kayla Perrin(27111)
Topological analysis of non-conjugated ethylene oxide cored dendrimers decorated with tetraphenylethylene: Insights from degree-based descriptors using the polynomial approach by A Theertha Nair & D Antony Xavier & Annmaria Baby & S Akhila(26485)
Investigation of mechanical and self-healing properties of hydroxyl-terminated polybutadiene functionalized with 2-ureido-4-pyrimidinone by Mohsen Kazazi & Mehran Hayaty & Ali Mousaviazar(26436)
The Ultimate Python Exercise Book: 700 Practical Exercises for Beginners with Quiz Questions by Copy(21023)
De Souza H. Master the Age of Artificial Intelligences. The Basic Guide...2024 by Unknown(20781)
D:\Jan\FTP\HOL\Work\Alien Breed - Tower Assault CD32 Alien Breed II - The Horror Continues Manual 1.jpg by PDFCreator(20651)
The Fifty Shades Trilogy & Grey by E L James(19608)
Shot Through the Heart: DI Grace Fisher 2 by Isabelle Grey(19488)
Shot Through the Heart by Mercy Celeste(19351)
Python GUI Applications using PyQt5 : The hands-on guide to build apps with Python by Verdugo Leire(17495)